home *** CD-ROM | disk | FTP | other *** search
/ Wayzata's Best of Shareware PC/Windows 1 / Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso / mac / DOS / GRAPHICS / LISS151 / ERROR_FN.H < prev    next >
C/C++ Source or Header  |  1992-03-10  |  509b  |  24 lines

  1. /**************************
  2.    ERROR_FN.H
  3.  
  4.         enums and function prototypes for error handling routines
  5.         for program LISSAJOU
  6.  
  7.  
  8. History:
  9.  
  10.  Version 1.4:
  11.     02/11/92 ACC create this file to get garbage out of DEFINES.H
  12.  
  13.  *************************/
  14.  
  15. #ifndef _ERROR_FN
  16. #define _ERROR_FN
  17. /* error types */
  18. enum {EFOPEN=1, EFCLOSE, EGRAPH, EMEM, EUNK};
  19.  
  20. /* ========================= function prototypes ========================== */
  21.  
  22. void error_fn(int errnum, char *msg);
  23.  
  24. #endif